home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / tsipp / tsipp.lha / tsipp3.0a / tests / all next >
Encoding:
Text File  |  1992-11-02  |  672 b   |  17 lines

  1. #==============================================================================
  2. #                                    all
  3. #------------------------------------------------------------------------------
  4. # Run all tests scripts.
  5. #------------------------------------------------------------------------------
  6. # $Id: all,v 2.0 1992/11/02 03:56:09 markd Rel $
  7. #==============================================================================
  8.  
  9. foreach test [lsort [glob *.test]] {
  10.     echo "---------- $test ----------"
  11.     if {[catch {source $test} msg] != 0} {
  12.         global $errorInfo
  13.         puts stderr "Uncaught error in $test: $msg"
  14.         puts stderr $errorInfo
  15.     }
  16. }
  17.